How to find Microsoft Teams mobile device usage?
+
Microsoft recently announced that Teams Phone now has 20 million users (about the population of New York). With mobile devices like iOS and Android, you can instantly access all your apps and documents, respond to chats and conversations, join meetings with a single click, and continue collaborating seamlessly.
With the rise of hybrid work environment, mobile device usage for Teams has increased significantly. It is now essential to monitor mobile usage to ensure proper device management for a few key reasons listed below.
- Regular tracking helps to verify that mobile devices follow established security protocols.
- Effective monitoring of Teams mobile devices identifies and blocks unauthorized access to protect confidential data.
- By tracking mobile device usage, we can spot and remove inactive devices.
Connect to the Microsoft Graph PowerShell module using the below cmdlet.
Connect-MgGraph âScopes Reports.Read.All
Run the below cmdlet to retrieve the Microsoft Teams device usage report for mobile devices using PowerShell.
Connect-MgGraph -Scopes "Directory.ReadWrite.All", "Group.Read.All"
$outputFilePath = <OutputFilePath>
Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/reports/getTeamsDeviceUsageUserDetail(period='$reportPeriod')" -OutputFilePath $outputFilePath
$reportData = Import-Csv -Path $outputFilePath
$reportData | Select-object "Report Refresh Date","User Principal Name&quo,"Last Activity Date","Used iOS","Used Android Phone" | Format-Table
Before executing the script, make sure to enter the valid output file path.
Struggling with generating reports and managing Teams mobile device usage?
- Leverage AdminDroid's specialized reports to gain detailed insights into usage activities on iOS and Android devices, providing comprehensive information about mobile device usage.
- You can monitor Android and iOS device usage with AdminDroidâs dedicated reports to track activity, remove inactive devices, and prevent unauthorized mobile device access.